c1b2eedadce864ba85e88bd37970a45b50f0aa3b,jetty-security/src/main/java/org/eclipse/jetty/security/SecurityHandler.java,SecurityHandler,handle,#String#Request#HttpServletRequest#HttpServletResponse#,408
Before Change
{
Authentication authentication = baseRequest.getAuthentication();
if (authentication==null || authentication==Authentication.NOT_CHECKED)
authentication=authenticator.validateRequest(request, response, isAuthMandatory);
if (authentication instanceof Authentication.Wrapped)
{
After Change
{
Authentication authentication = baseRequest.getAuthentication();
if (authentication==null || authentication==Authentication.NOT_CHECKED)
authentication=authenticator==null?Authentication.UNAUTHENTICATED:authenticator.validateRequest(request, response, isAuthMandatory);
if (authentication instanceof Authentication.Wrapped)
{